home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Linux / Kubuntu 8.10 / kubuntu-8.10-desktop-i386.iso / casper / filesystem.squashfs / usr / bin / foo2lava-wrapper < prev    next >
Text File  |  2008-09-09  |  18KB  |  714 lines

  1. #!/bin/sh
  2.  
  3. #* Copyright (C) 2003-2006  Rick Richardson
  4. #*
  5. #* This program is free software; you can redistribute it and/or modify
  6. #* it under the terms of the GNU General Public License as published by
  7. #* the Free Software Foundation; either version 2 of the License, or
  8. #* (at your option) any later version.
  9. #*
  10. #* This program is distributed in the hope that it will be useful,
  11. #* but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. #* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  13. #* GNU General Public License for more details.
  14. #*
  15. #* You should have received a copy of the GNU General Public License
  16. #* along with this program; if not, write to the Free Software
  17. #* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  18. #*
  19. #* Authors: Rick Richardson <rick.richardson@comcast.net>
  20.  
  21. VERSION='$Id: foo2lava-wrapper.in,v 1.35 2007/12/27 06:52:45 rick Exp $'
  22.  
  23. #
  24. # Printer Notes:
  25. #
  26. # LAVAFLOW:
  27. #    Konica Minolta 2530 DL
  28. #    Konica Minolta 2490 MF
  29. #    Xerox Phaser 6115MFP
  30. #
  31. # OPL:
  32. #    Konica Minolta 2480 MF
  33. #
  34.  
  35. PROGNAME="$0"
  36. BASENAME=`basename $PROGNAME`
  37. PREFIX=/usr
  38. SHARE=$PREFIX/share/foo2lava
  39. PATH=$PATH:/sw/bin:/opt/local/bin
  40.  
  41. #
  42. #    Log the command line, for debugging and problem reports
  43. #
  44. if [ -x /usr/bin/logger ]; then
  45.     logger -t "$BASENAME" -p lpr.info -- "foo2lava-wrapper $@" </dev/null
  46. fi
  47.  
  48. usage() {
  49.     cat <<EOF
  50. Usage:
  51.     $BASENAME [options] [ps-file]
  52.  
  53.     Foomatic printer wrapper for the foo2lava printer driver.
  54.     This script reads a Postscript ps-file or standard input
  55.     and converts it to LAVAFLOW printer format.
  56.  
  57. Normal Options:
  58. -c                Print in color (else monochrome)
  59. -d duplex         Duplex code to send to printer [$DUPLEX]
  60.                     1=off, 2=longedge, 3=shortedge
  61. -m media          Media code to send to printer [$MEDIA]
  62.                     1=standard 4=transparency 20=thick stock 22=envelope
  63.                     23=letterhead 25=postcard 26=labels 27=recycled
  64.                     28=glossy
  65. -p paper          Paper code [$PAPER]
  66.                     1=executive 2=letter 3=legal 25=A5 26=A4 45=B5jis
  67.                     65=B5iso 80=envMonarch 81=env#10 90=envDL 91=envC5
  68.                     92=envC6 835=4x6\" 837=10x15cm
  69. -n copies         Number of copies [$COPIES]
  70. -r <xres>x<yres>  Set device resolution in pixels/inch [$RES]
  71. -s source         Source code to send to printer [$SOURCE]
  72.                     1=upper, 2=lower, 4=manual, 7=auto
  73.             Code numbers may vary with printer model.
  74. -t                Draft mode.  Every other pixel is white.
  75. -2/-3/-4/-6/-8/-10/-12/-14/-15/-16/-18
  76.                   Print with N-up (requires psutils)
  77. -o orient         For N-up: -op is portrait, -ol is landscape, -os is seascape.
  78.  
  79. Printer Tweaking Options:
  80. -u <xoff>x<yoff>  Set offset of upper left printable in pixels [varies]
  81. -l <xoff>x<yoff>  Set offset of lower right printable in pixels [varies]
  82. -L mask           Send logical clipping values from -u/-l in ZjStream [3]
  83.                   0=no, 1=Y, 2=X, 3=XY
  84. -P                Do not output START_PLANE codes.  May be needed by some
  85.                   monochrome-only printers.
  86. -X padlen         Add extra zero padding to the end of BID segments [16]
  87. -z model          Model: 0=2530DL (LAVAFLOW) or 1=2480MF (OPL) [0]
  88.  
  89. Color Tweaking Options:
  90. -g gsopts         Additional options to pass to Ghostscript, such as
  91.                   -dDITHERPPI=nnn, etc.  May appear more than once. []
  92. -G profile.icm    Convert profile.icm to a Postscript CRD using icc2ps and
  93.                   adjust colors using the setcolorrendering PS operator.
  94.                   $SHARE/icm/ will be searched for profile.icm.
  95. -I intent         Select profile intent from ICM file [$INTENT]
  96.                   0=Perceptual, 1=Colorimetric, 2=Saturation, 3=Absolute
  97. -G gamma-file.ps  Prepend gamma-file to the Postscript input to perform
  98.                   color correction using the setcolortransfer PS operator.
  99.  
  100. Debugging Options:
  101. -S plane          Output just a single color plane from a color print [all]
  102.                   1=Cyan, 2=Magenta, 3=Yellow, 4=Black
  103. -D lvl            Set Debug level [$DEBUG]
  104. -V                $VERSION
  105. EOF
  106.  
  107.     exit 1
  108. }
  109.  
  110. #
  111. #       Report an error and exit
  112. #
  113. error() {
  114.     echo "$BASENAME: $1" >&2
  115.     exit 1
  116. }
  117.  
  118. dbgcmd() {
  119.     if [ $DEBUG -ge 1 ]; then
  120.         echo "$@" >&2
  121.     fi
  122.     "$@"
  123. }
  124.  
  125. #
  126. #    N-up-ify the job.  Requires psnup from psutils package
  127. #
  128. nup() {
  129.     case "$NUP" in
  130.     [2368]|1[0458])
  131.     tr '\r' '\n' | psnup $NUP_ORIENT -d2 -$NUP -m.3in -p$paper -q
  132.     ;;
  133.     [49]|1[26])
  134.     tr '\r' '\n' | psnup $NUP_ORIENT -d2 -$NUP -m.5in -p$paper -q
  135.     ;;
  136.     *)
  137.     error "Illegal call to nup()."
  138.     ;;
  139.     esac
  140. }
  141.  
  142. #
  143. #       Process the options
  144. #
  145.  
  146. # Try to use a local copy of GhostScript 8.14, if available.  Otherwise,
  147. # fallback to whatever the Linux distro has installed (usually 7.05)
  148. #
  149. # N.B. := operator used here, when :- would be better, because "ash"
  150. # doesn't have :-
  151. if gs.foo -v >/dev/null 2>&1; then
  152.         GSBIN=${GSBIN:-gs.foo}
  153. else
  154.         GSBIN=${GSBIN:-gs}
  155. fi
  156.  
  157. CMDLINE="$*"
  158. DEBUG=0
  159. DUPLEX=1
  160. COLOR=
  161. COLORMODE=default
  162. MODEL=0
  163. QUALITY=1
  164. QUALITY=wts
  165. MEDIA=0
  166. COPIES=1
  167. test -r /etc/papersize && PAPER=$(cat /etc/papersize)
  168. test "$PAPER" || PAPER=2
  169. RES=1200x600
  170. SOURCE=255
  171. NUP=
  172. CLIP_UL=
  173. CLIP_LR=
  174. CLIP_LOG=
  175. BC=
  176. AIB=
  177. NOPLANES=
  178. COLOR2MONO=
  179. GAMMAFILE=default
  180. INTENT=0
  181. GSOPTS=
  182. EXTRAPAD=
  183. SAVETONER=
  184. NUP_ORIENT=
  185. GSDEV=-sDEVICE=pbmraw
  186. # What mode to use if the user wants us to pick the "best" mode
  187. case `$GSBIN --version` in
  188. 7*)    DEFAULTCOLORMODE=10
  189.     DEFAULTCOLORMODE=2
  190.     DEFAULTCOLORMODE=10
  191.     ;;
  192. 8.1*)
  193.     QUALITY=1
  194.         DEFAULTCOLORMODE=10
  195.         ;;
  196. *)    DEFAULTCOLORMODE=2
  197.     DEFAULTCOLORMODE=10
  198.     ;;
  199. esac
  200. while getopts "1:23456789o:b:cC:d:g:l:u:L:m:n:p:q:r:s:tz:ABS:D:G:I:PX:Vh?" opt
  201. do
  202.     case $opt in
  203.     b)    GSBIN="$OPTARG";;
  204.     c)    COLOR=-c;;
  205.     d)    DUPLEX="$OPTARG";;
  206.     g)    GSOPTS="$GSOPTS $OPTARG";;
  207.     m)    MEDIA="$OPTARG";;
  208.     n)    COPIES="$OPTARG";;
  209.     p)    PAPER="$OPTARG";;
  210.     q)    QUALITY="$OPTARG";;
  211.     r)    RES="$OPTARG";;
  212.     s)    SOURCE="$OPTARG";;
  213.     t)    SAVETONER="-t";;
  214.     z)    MODEL="$OPTARG";;
  215.     l)    CLIP_LR="-l $OPTARG";;
  216.     u)    CLIP_UL="-u $OPTARG";;
  217.     L)    CLIP_LOG="-L $OPTARG";;
  218.     A)    AIB=-A;;
  219.     B)    BC=-B;;
  220.     C)    COLORMODE="$OPTARG";;
  221.     S)    COLOR2MONO="-S$OPTARG";;
  222.     D)    DEBUG="$OPTARG";;
  223.     G)    GAMMAFILE="$OPTARG";;
  224.     I)    INTENT="$OPTARG";;
  225.     P)    NOPLANES=-P;;
  226.     X)    EXTRAPAD="-X $OPTARG";;
  227.     [234689])    NUP="$opt";;
  228.     [57])    error "Can't find acceptable layout for $opt-up";;
  229.     1)    case "$OPTARG" in
  230.         [024568])    NUP="1$OPTARG";;
  231.         *)    error "Can't find acceptable layout for 1$OPTARG-up";;
  232.         esac
  233.         ;;
  234.     o)    case "$OPTARG" in
  235.         l*)    NUP_ORIENT=-l;;
  236.         s*)    NUP_ORIENT=-r;;
  237.         p*|*)    NUP_ORIENT=;;
  238.         esac;;
  239.     V)    echo "$VERSION"; foo2lava -V; foo2zjs-pstops -V; exit 0;;
  240.     h|\?)
  241.         if [ "$CMDLINE" != "-?" -a "$CMDLINE" != -h ]; then
  242.             echo "Illegal command:"
  243.             echo "    $0 $CMDLINE"
  244.             echo
  245.         fi
  246.         usage;;
  247.     esac
  248. done
  249. shift `expr $OPTIND - 1`
  250.  
  251. #
  252. # If there is an argument left, take it as the file to print.
  253. # Else, the input comes from stdin.
  254. #
  255. if [ $# -ge 1 ]; then
  256.     if [ "$LPJOB" = "" ]; then
  257.     : # LPJOB="$1"
  258.     fi
  259.     exec < $1
  260. fi
  261.  
  262.  
  263. #
  264. #    Select the ghostscript device to use
  265. #
  266. if [ "" = "$COLOR" ]; then
  267.     GSDEV=-sDEVICE=pbmraw
  268. else
  269.     GSDEV=-sDEVICE=bitcmyk
  270. fi
  271. case "$GAMMAFILE" in
  272. default)
  273.     GAMMAFILE=km2530-jconner-d50.icm
  274.     ;;
  275. none) GAMMAFILE=;;
  276. esac
  277.  
  278. #
  279. case "$QUALITY" in
  280. 0)
  281.     GSOPTS="-dCOLORSCREEN $GSOPTS"
  282.     ;;
  283. 1)
  284.     GSOPTS="-dCOLORSCREEN $GSOPTS"
  285.     ;;
  286. 2)
  287.     GSOPTS="-dMaxBitmap=500000000 $GSOPTS"
  288.     ;;
  289. wts)
  290.     GSOPTS="-dCOLORSCREEN -dMaxBitmap=500000000 $GSOPTS"
  291.     ;;
  292. esac
  293.  
  294. #
  295. #    Validate model code
  296. #
  297. case "$MODEL" in
  298. 0|1)    ;;
  299. *)    error "Unknown model code $MODEL";;
  300. esac
  301.  
  302. #
  303. #    Validate media code
  304. #
  305. case "$MEDIA" in
  306. 0|plain)    MEDIA=0; if [ $MODEL = 1 ]; then MEDIA=plain; fi;;
  307. 4|transparency)    MEDIA=4; if [ $MODEL = 1 ]; then MEDIA=transparency; fi;;
  308. 20|thickstock)    MEDIA=20; if [ $MODEL = 1 ]; then MEDIA=cardstock; fi;;
  309. 22|envelope)    MEDIA=22; if [ $MODEL = 1 ]; then MEDIA=envelope; fi;;
  310. 23|letterhead)    MEDIA=23; if [ $MODEL = 1 ]; then MEDIA=stationery-letterhead; fi;;
  311. 25|postcard)    MEDIA=25; if [ $MODEL = 1 ]; then MEDIA=photographic-matte; fi;;
  312. 26|labels)    MEDIA=26; if [ $MODEL = 1 ]; then MEDIA=labels; fi;;
  313. 27|recycled)    MEDIA=27; if [ $MODEL = 1 ]; then MEDIA=plain; fi;;
  314. 28|glossy)    MEDIA=28; if [ $MODEL = 1 ]; then MEDIA=photographic-glossy; fi;;
  315. [0-9]*)        ;;
  316. *)        error "Unknown media code $MEDIA";;
  317. esac
  318.  
  319. #
  320. #    Validate source (InputSlot) code
  321. #
  322. case "$SOURCE" in
  323. 1|tray1)    SOURCE=1;;
  324. 4|tray2)    SOURCE=4;;
  325. 255|auto)    SOURCE=255;;
  326. [0-9]*)        ;;
  327. *)        error "Unknown source code $SOURCE";;
  328. esac
  329.  
  330. #
  331. #    Validate Duplex code
  332. #
  333. case "$DUPLEX" in
  334. 1|off|none)    DUPLEX=1;;
  335. 2|long*)    DUPLEX=2;;
  336. 3|short*)    DUPLEX=3;;
  337. [0-9]*)        ;;
  338. *)        error "Unknown duplex code $DUPLEX";;
  339. esac
  340.  
  341. #
  342. #    Validate Resolution
  343. #
  344. case "$RES" in
  345. 600x600)    ;;
  346. 1200x600)    ;;
  347. 2400x600)    ;;
  348. *)        error "Illegal resolution $RES";;
  349. esac
  350.  
  351. #
  352. #    Figure out the paper dimensions in pixels/inch, and set the
  353. #    default clipping region.  Unfortunately, this is a trouble
  354. #    area for ZjStream printers.  Various versions of ZjS print
  355. #    engines react differently when asked to print into their
  356. #    unprintable regions.
  357. #
  358. set_clipping() {
  359.     ulx=$1; uly=$2
  360.     lrx=$3; lry=$4
  361.  
  362.     # Set clipping region if it isn't already set
  363.     if [ "$CLIP_UL" = "" ]; then
  364.     case "$RES" in
  365.     600x600)    ulx=`expr $ulx / 2`;;
  366.     2400x600)    ulx=`expr $ulx \* 2`;;
  367.     esac
  368.     CLIP_UL="-u ${ulx}x${uly}"
  369.     fi
  370.     if [ "$CLIP_LR" = "" ]; then
  371.     case "$RES" in
  372.     600x600)    lrx=`expr $lrx / 2`;;
  373.     2400x600)    lrx=`expr $lrx \* 2`;;
  374.     esac
  375.     CLIP_LR="-l ${lrx}x${lry}"
  376.     fi
  377. }
  378.  
  379. case "$PAPER" in
  380. Custom*)
  381.         #%%BeginFeature: *CustomPageSize True
  382.         #216
  383.         #360
  384.         #0
  385.         #0
  386.         #0
  387.         #pop pop pop pop pop
  388.  
  389.         #%%BeginFeature: *CustomPageSize True
  390.         #792.000000 612.000000 1 0.000000 0.000000
  391.         #pop pop pop pop pop
  392.  
  393.         if [ $DEBUG = 0 ]; then
  394.             TMPFILE=/tmp/cus$$
  395.         else
  396.             TMPFILE=/tmp/custom.ps
  397.         fi
  398.         cat >$TMPFILE
  399.         exec <$TMPFILE
  400.  
  401.         tmp=`head -n 10000 $TMPFILE \
  402.             | sed -n '/CustomPageSize/{n;p;n;p;}' \
  403.             | tr '\n' ' '`
  404.         case "$tmp" in
  405.         [0-9]*\ [0-9]*)
  406.             XDIM=`echo "$tmp" | sed 's/ .*//'`
  407.             YDIM=`echo "$tmp" | sed -e 's/^[^ ]* //' -e 's/ .*//'`
  408.             ;;
  409.         *)
  410.             if [ $DEBUG = 0 ]; then rm -f $TMPFILE; fi
  411.             error "Custom page size [XY]DIM != 1-99999"
  412.             ;;
  413.         esac
  414.         xmm=`dc -e "$XDIM 25.4 * 36 + 72/p"`
  415.         XDIM=`dc -e "$XDIM 1200* 72/p"`
  416.         ymm=`dc -e "$YDIM 25.4 * 36 + 72/p"`
  417.         YDIM=`dc -e "$YDIM 600* 72/p"`
  418.         PAPER=101;        paper=letter;
  419.         MEDIA=20
  420.                 set_clipping 2 100     2 100
  421.         if [ $MODEL = 1 ]; then PAPER=custom_size_${xmm}x${ymm}mm; fi
  422.         ;;
  423. 1|executive)    PAPER=1;    paper=executive; XDIM="8700";  YDIM="6300"
  424.         set_clipping 206 110    206 110
  425.         if [ $MODEL = 1 ]; then PAPER=na_executive_7.25x10.5in; fi
  426.         ;;
  427. 2|letter)    PAPER=2;    paper=letter;    XDIM="10200"; YDIM="6600"
  428.         set_clipping 204 100    204 100
  429.         if [ $MODEL = 1 ]; then PAPER=na_letter_8.5x11in; fi
  430.         ;;
  431. 3|legal)    PAPER=3;    paper=legal;     XDIM="10200"; YDIM="8400"
  432.         set_clipping 204 104    204 104
  433.         if [ $MODEL = 1 ]; then PAPER=na_legal_8.5x14in; fi
  434.         ;;
  435. 25|a5|A5)    PAPER=25;    paper=a5;        XDIM="6992";  YDIM="4960"
  436.         set_clipping 216 112    216 112
  437.         if [ $MODEL = 1 ]; then PAPER=iso_a5_148x210mm; fi
  438.         ;;
  439. 26|a4|A4)    PAPER=26;    paper=a4;        XDIM="9920";  YDIM="7016"
  440.         set_clipping 208 100    208 100
  441.         if [ $MODEL = 1 ]; then PAPER=iso_a4_210x297mm; fi
  442.         ;;
  443. 45|b5jis|B5jis)    PAPER=45;    paper=b5;        XDIM="8598";  YDIM="6070"
  444.         set_clipping 204 107    202 107
  445.         if [ $MODEL = 1 ]; then PAPER=jis_b5_182x257mm; fi
  446.         ;;
  447. 65|b5iso|B5iso)    PAPER=65;    paper=b5;        XDIM="8314";  YDIM="5906"
  448.         set_clipping 206 105    204 105
  449.         ;;
  450. 80|envMonarch)    PAPER=80;    paper=envMonarch;XDIM="4650";  YDIM="4500"
  451.         set_clipping 214 106    212 106
  452.         if [ $MODEL = 1 ]; then PAPER=na_monarch_3.875x7.5in; fi
  453.         ;;
  454. 81|"env#10")    PAPER=81;    paper=env10;     XDIM="4950";  YDIM="5700"
  455.         set_clipping 204 114    202 114
  456.         if [ $MODEL = 1 ]; then PAPER=na_number-10_4.125x9.5in; fi
  457.         ;;
  458. 90|envDL)    PAPER=90;    paper=envDL;     XDIM="5200";  YDIM="5200"
  459.         set_clipping 216 104    216 104
  460.         if [ $MODEL = 1 ]; then PAPER=iso_dl_110x220mm; fi
  461.         ;;
  462. 91|envC5)    PAPER=91;    paper=envC5;     XDIM="7650";  YDIM="5408"
  463.         set_clipping 210 112    208 112
  464.         if [ $MODEL = 1 ]; then PAPER=iso_c5_162x229mm; fi
  465.         ;;
  466. 92|envC6)    PAPER=92;    paper=envC6;     XDIM="5386";  YDIM="3826"
  467.         set_clipping 214 105    212 105
  468.         if [ $MODEL = 1 ]; then PAPER=iso_c6_114x162mm; fi
  469.         ;;
  470. 835|photo4x6)    PAPER=835;    paper=photo4x6;  XDIM="4800";  YDIM="3600"
  471.         set_clipping 224 104    224 104
  472.         ;;
  473. 837|photo10x15)    PAPER=837;    paper=photo10x15; XDIM="4818";  YDIM="3590"
  474.         # Actually, 102x152
  475.         set_clipping 201 115    201 115
  476.         ;;
  477. *)        error "Unimplemented paper code $PAPER";;
  478. esac
  479. # e.g. /usr/share/ghostscript/7.07/lib/gs_statd.ps
  480. PAPERSIZE="-sPAPERSIZE=$paper";
  481.  
  482. case "$RES" in
  483. 600x600)    XDIM=`expr $XDIM / 2`;;
  484. 1200x600)    ;;
  485. 2400x600)    XDIM=`expr $XDIM \* 2`;;
  486. esac
  487. DIM="${XDIM}x${YDIM}"
  488.  
  489. #
  490. # Filter thru psnup if N-up printing has been requested
  491. #
  492. case $NUP in
  493. [234689]|1[024568])    PREFILTER="nup";;
  494. *)            PREFILTER=cat;;
  495. esac
  496. if [ "$DEBUG" -ge 9 ]; then
  497.     PREFILTER="tee /tmp/$BASENAME.ps"
  498. fi
  499.  
  500. #
  501. #    Overload -G.  If the file name ends with ".icm" or ".ICM"
  502. #    then convert the ICC color profile to a Postscript CRD,
  503. #    then prepend it to the users job.  Select the intent
  504. #    using the -I option.
  505. #
  506.  
  507. create_crd() {
  508.     #
  509.     # Create a Postscript CRD
  510.     #
  511.     ICC2PS=$PREFIX/bin/foo2zjs-icc2ps
  512.     if [ -x $ICC2PS ]; then
  513.         case "$GAMMAFILE" in
  514.         none.icm | */none.icm)
  515.             ;;
  516.         *)
  517.             $ICC2PS -o $GAMMAFILE -t$INTENT > $ICCTMP.crd.ps 2>$ICCTMP.log \
  518.                 || error "Problem converting .ICM file to Postscript"
  519.             ;;
  520.         esac
  521.  
  522.     PSTOPS_OPTS="$PSTOPS_OPTS -c"
  523.         cat > $ICCTMP.usecie.ps <<-EOF
  524.                 %!PS-Adobe-3.0
  525.                 <</UseCIEColor true>>setpagedevice
  526.     EOF
  527.         if [ "$QUALITY" = wts ]; then
  528.             cat >> $ICCTMP.usecie.ps <<-EOF
  529.                 << /UseWTS true >> setuserparams
  530.                 <<
  531.                     /AccurateScreens true
  532.                     /HalftoneType 1
  533.                     /HalftoneName (Round Dot Screen) cvn
  534.                     /SpotFunction { 180 mul cos exch 180 mul cos add 2 div}
  535.                     /Frequency 137
  536.                     /Angle 37
  537.                 >> sethalftone
  538.         EOF
  539.         fi
  540.         cat > $ICCTMP.selcrd.ps <<-EOF
  541.                 /Current /ColorRendering findresource setcolorrendering
  542.     EOF
  543.         case "$GAMMAFILE" in
  544.         none.icm | */none.icm) GAMMAFILE="$ICCTMP.usecie.ps";;
  545.         *)      GAMMAFILE="$ICCTMP.usecie.ps $ICCTMP.crd.ps $ICCTMP.selcrd.ps";;
  546.         esac
  547.     else
  548.         GAMMFILE=
  549.     fi
  550. }
  551.  
  552. if [ $DEBUG -gt 0 ]; then
  553.     ICCTMP=/tmp/icc
  554. else
  555.     ICCTMP=/tmp/icc$$
  556. fi
  557.  
  558. if [ "" = "$COLOR" ]; then
  559.     COLORMODE=
  560.     GAMMAFILE=
  561. else
  562.     case "$COLORMODE" in
  563.     default)    COLORMODE=$DEFAULTCOLORMODE;;
  564.     esac
  565. fi
  566.  
  567. CRDBASE="$PREFIX/share/foo2zjs/crd"
  568. case "$RES" in
  569.     600x600)    SCREEN=screen1200.ps;;
  570.     1200x600)    SCREEN=screen1200.ps;;
  571.     2400x600)    SCREEN=screen2400.ps;;
  572. esac
  573.  
  574. PSTOPS_OPTS="-n"
  575.  
  576. case "$COLORMODE" in
  577. 0|"")
  578.     # Monochrome
  579.     ;;
  580. 10|icm)
  581.     # Use old ICM method
  582.     AIB=-A
  583.     BC=-B
  584.     case "$GAMMAFILE" in
  585.     none.icm | */none.icm)
  586.         create_crd
  587.         ;;
  588.     *.icm|*.ICM|*.icc|*.ICC)
  589.     #
  590.     # Its really an .ICM file, not a gamma file.
  591.     #
  592.     # The file can be a full path name, or the name of a file in $SHARE/icm/
  593.     #
  594.     if [ -r "$GAMMAFILE" ]; then
  595.         create_crd
  596.     elif [ -r "$SHARE/icm/$GAMMAFILE" ]; then
  597.         GAMMAFILE="$SHARE/icm/$GAMMAFILE"
  598.         create_crd
  599.     else
  600.         GAMMAFILE=
  601.     fi
  602.     ;;
  603.     esac
  604.     ;;
  605. 1|photo)
  606.     # Photo
  607.     GAMMAFILE="$CRDBASE/prolog.ps"
  608.     GAMMAFILE="$GAMMAFILE $CRDBASE/2300w-1200@150-l250-kx,ucr125,75-per.crd"
  609.     GAMMAFILE="$GAMMAFILE $CRDBASE/$SCREEN"
  610.     ;;
  611. 2|graphics)
  612.     # Photo and Text
  613.     GAMMAFILE="$CRDBASE/prolog.ps"
  614.     #GAMMAFILE="$GAMMAFILE $CRDBASE/2300w-1200@150-l250-kx,ucr100,75-per.crd"
  615.     GAMMAFILE="$GAMMAFILE $CRDBASE/kh.crd"
  616.     GAMMAFILE="$GAMMAFILE $CRDBASE/$SCREEN"
  617.     ;;
  618. 3|text)
  619.     # Graphic and Text
  620.     GAMMAFILE="$CRDBASE/prolog.ps"
  621.     #GAMMAFILE="$GAMMAFILE $CRDBASE/2300w-1200@150-l250-kx,ucr100,50-per.crd"
  622.     GAMMAFILE="$GAMMAFILE $CRDBASE/kx.crd"
  623.     GAMMAFILE="$GAMMAFILE $CRDBASE/$SCREEN"
  624.     ;;
  625. 4|tonersave)
  626.     # Reduced toner
  627.     GAMMAFILE="$CRDBASE/prolog.ps"
  628.     GAMMAFILE="$GAMMAFILE $CRDBASE/2300w-1200@150-l250-kx,ucr100,0-per.crd"
  629.     GAMMAFILE="$GAMMAFILE $CRDBASE/$SCREEN"
  630.     ;;
  631. *.crd)
  632.     GAMMAFILE="$CRDBASE/prolog.ps"
  633.     if [ -f $COLORMODE ]; then
  634.     GAMMAFILE="$GAMMAFILE $COLORMODE"
  635.     elif [ -f $CRDBASE/$COLORMODE ]; then
  636.     GAMMAFILE="$GAMMAFILE $CRDBASE/$COLORMODE"
  637.     else
  638.     error "Can't find CRD '$COLORMODE' in . or in $CRDBASE"
  639.     fi
  640.     GAMMAFILE="$GAMMAFILE $CRDBASE/$SCREEN"
  641.     ;;
  642. *)
  643.     error "Unknown color method '$COLORMODE'"
  644.     ;;
  645. esac
  646.  
  647. if [ "$COLOR" != "" -a "$QUALITY" = wts ]; then
  648.     PSTOPS_OPTS="$PSTOPS_OPTS -w"
  649. fi
  650.  
  651. if [ "" != "$COLOR" ]; then
  652.     if [ "" = "$AIB" -a "" = "$BC" ]; then
  653.     # Faster, but can't handle AllIsBlack or BlackClears
  654.     : #GSDEV=-sDEVICE=pksmraw
  655.     else
  656.     # Can't handle different size pages
  657.     : #GSDEV=-sDEVICE=bitcmyk
  658.     fi
  659. fi
  660.  
  661. #
  662. #    Figure out USERNAME
  663. #
  664. if [ "$LPUSER" != "" ]; then
  665.     USER="$LPUSER@$LPHOST"
  666. else
  667.     USER=""
  668. fi
  669.  
  670. #
  671. #    Main Program, just cobble together the pipeline and run it
  672. #
  673. #    The malarky with file descriptors 1 and 3 is to avoid a bug in
  674. #    (some versions?) of Ghostscript where Postscript's stdout gets
  675. #    intermingled with the printer drivers output, resulting in
  676. #    corrupted image data.
  677. #
  678. GS="$GSBIN -q -dBATCH -dSAFER -dQUIET -dNOPAUSE"
  679.  
  680. foo2zjs-pstops $PSTOPS_OPTS | \
  681. $PREFILTER \
  682. | ($GS $PAPERSIZE -g$DIM -r$RES $GSDEV $GSOPTS \
  683.     -sOutputFile="|cat 1>&3" $GAMMAFILE -_ >/dev/null) 3>&1 \
  684. | foo2lava -r$RES -g$DIM -p$PAPER -m$MEDIA -n$COPIES -d$DUPLEX -s$SOURCE \
  685.         -z$MODEL $COLOR $CLIP_UL $CLIP_LR $CLIP_LOG $SAVETONER \
  686.         -J "$LPJOB" -U "$USER" \
  687.         $BC $AIB $COLOR2MONO $NOPLANES $EXTRAPAD -D$DEBUG
  688.  
  689. #
  690. #    Log the command line, for debugging and problem reports
  691. #
  692. if [ -x /usr/bin/logger ]; then
  693.     logger -t "$BASENAME" -p lpr.info -- \
  694.     "$GSBIN $PAPERSIZE -g$DIM -r$RES $GSDEV $GSOPTS $GAMMAFILE"
  695.     logger -t "$BASENAME" -p lpr.info -- \
  696.     "foo2lava -r$RES -g$DIM -p$PAPER -m$MEDIA \
  697. -n$COPIES -d$DUPLEX -s$SOURCE -z$MODEL $COLOR $CLIP_UL $CLIP_LR $CLIP_LOG \
  698. $SAVETONER $BC $AIB $COLOR2MONO $NOPLANES $EXTRAPAD"
  699. fi
  700.  
  701. #
  702. #    Remove cruft
  703. #
  704. if [ $DEBUG -eq 0 ]; then
  705.     for i in crd.ps log usecie.ps selcrd.ps
  706.     do
  707.     file="$ICCTMP.$i"
  708.     [ -f $file ] && rm -f $file
  709.     done
  710.     [ -f "$TMPFILE" ] && rm -f $TMPFILE
  711. fi
  712.  
  713. exit 0
  714.